Syntax |
SetIconProperty(@" IconTitle", #directToStage, boolean)
SetSpriteProperty(@" IconTitle", #directToStage, boolean) |
Type |
Icon property, sprite property |
Description |
This property controls whether a Flash movie is rendered directly to the screen or drawn in memory before being rendered in the Presentation window. Rendering a Flash movie direct to screen provides the fastest onscreen playback, but it requires that the sprite always appear on top of other sprites regardless of its layer.
The directToStage property can have these values:
![](/file/23250/CHIP Turkiye Ağustos 2000 CD2.iso/prog/deprem/Xtras/FlashAsset/Help/html/images/tri.gif) |
TRUE The Flash movie sprite is rendered direct to screen. |
![](/file/23250/CHIP Turkiye Ağustos 2000 CD2.iso/prog/deprem/Xtras/FlashAsset/Help/html/images/tri.gif) |
FALSE The Flash movie sprite is drawn in memory and then displayed on screen. |
You can get and set the value of the directToStage property. The default setting is FALSE . |
Example |
This statement sets a Flash movie sprite to render direct to screen.
SetSpriteProperty(@"Flash Icon", #directToStage, True)
|